Don't know why the Text view does not load inside of the viewflipper
Could someone give me a clue please?
This is been a nighmare for me
Second_Activity.java Main second_activity.xml layout 1.xml Another Layout that goes inside the viewflipper
second_Activity.java
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//Start of screen
setContentView(R.layout.second_activity);
LinearLayout DynamicTab = (LinearLayout) findViewById(R.id.myID1);
LinearLayout.LayoutParams tab1 = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
TextView red = new TextView(this);
red.setLayoutParams(tab1); red.setGravity(Gravity.CENTER_HORIZONTAL);
red.setBackgroundColor(Color.rgb(170, 00, 00)); red.setText("red");
red.setLayoutParams(tab1);
DynamicTab.addView(red);
1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
flipper.setDisplayedChild(0);
}
});
2.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
flipper.setDisplayedChild(1);;
}
});
3.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
flipper.setDisplayedChild(2);
second_activity.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white" >
<ViewFlipper
android:id="@+id/viewFlipper1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/linearLayout2"
android:layout_marginTop="0dp"
android:background="@android:color/white" >
<include layout="@layout/1"/>
<include layout="@layout/2"/>
<include layout="@layout/3"/>
</ViewFlipper>
</RelativeLayout>
1.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/myID1"
android:background="@drawable/bg_mr" >
<TextView
android:text="MyTest"
android:textSize="35dp"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/macroeconomic_text"
/>
</LinearLayout