我有问题。在不同的显示设备上不适合按钮高度。如何解决这个问题?
events.xml 在LinearLayout(id = events_line)中插入了一个按钮。
<?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">
<ScrollView android:id="@+id/scrollView1"
android:layout_width="match_parent" android:layout_height="match_parent"
android:layout_weight="1">
<LinearLayout android:id="@+id/events_line"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:orientation="vertical" android:padding="10dp" />
</ScrollView>
<LinearLayout android:layout_width="match_parent"
android:layout_height="5dp" android:background="@drawable/bg_bottom"
android:orientation="vertical" />
</LinearLayout>
event_active_button.xml 此按钮将插入LinearLayout。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/event_item1" android:layout_width="match_parent"
android:layout_height="90dp" android:layout_marginBottom="12dp"
android:background="@drawable/event_button_selector" android:clickable="true">
<ImageView android:id="@+id/imageView1" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_alignParentRight="true"
android:layout_centerVertical="true" android:layout_marginRight="16dp"
android:src="@drawable/arrow" />
<RelativeLayout android:id="@+id/rl"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_centerVertical="true" android:layout_marginLeft="20dp">
<ImageView android:id="@+id/logo" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:src="@drawable/prod" />
<TextView android:id="@+id/date" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_alignLeft="@+id/logo"
android:layout_below="@+id/logo" android:text="10.09.12"
android:textColor="#000000" android:textSize="12sp" />
</RelativeLayout>
</RelativeLayout>
代码添加
LayoutInflater lf = getLayoutInflater();
LinearLayout linLayout = (LinearLayout) findViewById(R.id.events_line);
View active_e = lf.inflate(R.layout.event_active_button, linLayout, true);