我在 Android 应用程序中创建了布局中间的视图。但我希望通过按键盘上的二进制数来增加视图的高度。我不知道如何实现它。
这是我的 XML 文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="vertical"
android:padding="20dp" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingBottom="20dp"
android:text="@string/textstr" />
<View
android:layout_width="70dp"
android:layout_height="150dp"
android:background="#9400d3" />
</LinearLayout>