我TextView
中有4个Activity
,我正在使用LinearLayout
垂直方向。前一个TextView
是一种标题(不需要滚动)下一个是某种描述,我想使其可滚动。第三个是标题(不需要滚动),第四个是描述(需要滚动)。
我试过,但屏幕上只显示了顶部TextView
(标题)和第二个TextView
(描述)。描述是可滚动的,但问题是,隐藏了其他两个TextView
。
这是一个愚蠢的问题,但我有点卡在这里,因为我是新来的android。这是我的xml
。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/list_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="?android:attr/actionBarSize"
android:orientation="vertical"
android:padding="15dp"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#d0f7c9"
android:orientation="vertical"
android:padding="10dp"
>
<TextView
android:id="@+id/tvTitle"
style="?android:attr/listSeparatorTextViewStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textColor="#ffffff"
android:textSize="20dp" />
</LinearLayout>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#b3cff4"
android:orientation="vertical">
<TextView
android:id="@+id/tvShow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/black"
android:textSize="20dp" />
</LinearLayout>
</ScrollView>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Program Output"
android:textColor="@color/black"
android:textSize="25dp" />
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#d2b3f4">
<TextView
android:id="@+id/tvOutput"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#ffffff"
android:textSize="20dp" />
</LinearLayout>
</ScrollView>
答案 0 :(得分:0)
你可以这样试试,
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="2">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#d0f7c9"
android:orientation="vertical">
<TextView
android:id="@+id/tvTitle"
style="?android:attr/listSeparatorTextViewStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Top Title"
android:textColor="#ffffff"
android:textSize="20dp"/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#b3cff4">
<TextView
android:id="@+id/tvShow"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textSize="20dp"/>
</ScrollView>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/tvTitle1"
style="?android:attr/listSeparatorTextViewStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Seconf Title"
android:textColor="#ffffff"
android:textSize="20dp"/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#b3cff4">
<TextView
android:id="@+id/tvShow1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textSize="20dp"/>
</ScrollView>
</LinearLayout>
</LinearLayout>
答案 1 :(得分:0)
我可能会这样做是创建两个布局。一个是数字1和2文本视图。另一个布局是3和4.然后在第一个布局中包括第二个布局。
<linearlayout>
<text view>
<linearlayout>
<scrollview>
<textview>
</scrollview>
</linearlayout>
<include layout="@layout/layout2"/>
</linearlayout>
像这样的东西。 布局一个
<linearlayout>
<text view>
<linearlayout>
<scrollview>
<textview>
</scrollview>
</linearlayout>
</linear layout>
布局两次
{{1}}