我是android开发的新手,我想在android中制作一个这样的屏幕:
任何人都可以帮助我这样做:
- ImageView(从左、右和顶部留出 20px 的空间)。
- 空间。
- 文本视图。
- 空间。
- 文本视图1。
- 空间。
- 文本视图 2:文本视图 3。
- 空间。
. . ……
如果 imageView 不存在 textview 应该出现并且 imageview 应该隐藏。
我是android开发的新手,我想在android中制作一个这样的屏幕:
任何人都可以帮助我这样做:
. . ……
如果 imageView 不存在 textview 应该出现并且 imageview 应该隐藏。
例子:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:layout_marginLeft="20dip"
android:layout_marginRight="20dip"
android:layout_marginTop="20dip"
android:src="@drawable/img"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:layout_marginLeft="2dip"
android:layout_marginRight="2dip"
android:layout_marginTop="5dip"
android:text="Txt1"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:layout_marginLeft="2dip"
android:layout_marginRight="2dip"
android:layout_marginTop="5dip"
android:text="Txt2"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:layout_marginLeft="2dip"
android:layout_marginRight="2dip"
android:layout_marginTop="5dip"
android:text="Txt3"/>
</LinearLayout>