请... 这是什么观点以及如何实施?
答案 0 :(得分:2)
它看起来类似于CardView(https://developer.android.com/training/material/lists-cards.html),里面有自定义布局。
答案 1 :(得分:0)
这是一个全息光框架布局,里面有一些视图和TextView。 你必须自己进行格式化,但这是一个基本的例子。
<RelativeLayout
android:id="@+id/exampleRL"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="20dp"
android:background="@android:drawable/dialog_holo_light_frame" >
<TextView
android:id="@+id/firstDescription"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:textIsSelectable="true"
android:text="Example text"
android:textColor="#000000"
android:textSize="12dp" />
<View
android:id="@+id/Bar"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@+id/firstDescription"
android:background="#DCDCDC" />
<TextView
android:id="@+id/secondDescription"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/Bar"
android:padding="10dp"
android:textIsSelectable="true"
android:text="More text examples"
android:textColor="#B0C4DE"
android:textSize="12dp" />
</RelativeLayout>