EmotionKeyBoard
EmotionKeyBoard copied to clipboard
用Linerlayout会有bug,用listview就不会,请问如何解决?
`<me.yngluo.emotionkeyboard.emotioninput.SmileyInputRoot xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/root" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" android:orientation="vertical">
<ListView
android:id="@+id/topic_list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<include layout="@layout/my_input_bar" />
</me.yngluo.emotionkeyboard.emotioninput.SmileyInputRoot>这样是可以的,但是
<com.xygame.hobby.widget.emotionpannel.emotioninput.SmileyInputRoot
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:background="@color/base_gray"
android:orientation="vertical">
<include layout="@layout/title_bar"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="dsadasdsadasd"/>
</LinearLayout>
<include layout="@layout/my_input_bar" />
</com.xygame.hobby.widget.emotionpannel.emotioninput.SmileyInputRoot>` 这样是有bug的,该如何解决?