如何在touch-android studio上移动活动

时间:2017-01-06 06:46:11

标签: android

我在android studio中创建了一个应用程序,在按钮点击后填充edittext后,我在textview中获取结果文本。因为内容视图的长度被削减。我希望触摸视图(活动)应该移动updown以查看视图中的所有内容。附图。

Mobile activity content is attached

2 个答案:

答案 0 :(得分:0)

使用ScrollView。当视图大于设备大小时,它会自动滚动。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <!-- your  xml code-->
</LinearLayout>
</ScrollView>

答案 1 :(得分:0)

使用Parent layout作为Scrollview,但scrollview只有一个子布局。

<ScrollView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
   <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

    </RelativeLayout>
</ScrollView>

供参考,请查看{{3}}。