我正在android中创建一个可扩展列表视图。我有一个查询,如何设置可扩展列表视图的布局,中心左侧文本上的图像和右侧的组指示器。
如果您看到图像组指示器被压扁,我希望它以正常方式显示。我怎么能这样做?
<?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" >
<RelativeLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:background="#67B1E2">
<ImageButton
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentLeft="true"
android:background="@drawable/homescreen_left_btn"
android:layout_centerInParent="true"
android:layout_marginLeft="10dp"
android:clickable="true"/>
<ImageView
android:layout_width="150dp"
android:layout_height="wrap_content"
android:id="@+id/firstedittext"
android:layout_centerInParent="true"
android:src="@drawable/logo"/>
<ImageButton
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:background="@drawable/user_btn"
android:layout_centerInParent="true"
android:layout_marginRight="10dp"
android:clickable="true"/>
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#556268"/>
<LinearLayout
android:id="@+id/home_screen_linear_join_event"
android:layout_width="250dp"
android:layout_height="40dp"
android:orientation="horizontal"
android:gravity="center"
android:layout_gravity="center"
android:background="@drawable/join_event_btn"
android:layout_marginTop="10dp"
android:clickable="true">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/join_event_icn"
android:layout_gravity="left|center"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:text="Join an Event"
android:textColor="#4F4F4F"
android:textStyle="bold"
android:gravity="center"
android:layout_marginLeft="10dp"/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#76B8E5"
android:layout_marginTop="30dp"/>
<ExpandableListView
android:id="@+id/expandablelistview01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:cacheColorHint="#ffffff"
android:childDivider="#94bdd8"
android:divider="#94bdd8"
android:dividerHeight="1dp"
android:footerDividersEnabled="true"
android:groupIndicator="@drawable/group_indicator"
android:headerDividersEnabled="true"
android:listSelector="@android:color/white"
android:transcriptMode="alwaysScroll" >
</ExpandableListView>
</LinearLayout>