レイアウトに問題があります。私のアクティビティでは、最初にスプラッシュスクリーンを表示し、その後、いくつかの条件に基づいて異なるレイアウトを表示する必要があります.1つのレイアウトを表示すると、透明な白(スプラッシュビューのように)のように見え、他のレイアウトは背景色が一致しているので問題ありませんそれと。透明な白いビュー(テキストビュー)を押すと、正常に見えます。つまり、さまざまなビューを押したり離したりするという意味でボタンとして機能します。
背景色を付けてみましたが、まだ問題があります。残念ながら、そのビューにのみ白い色を付ける必要があります。
誰かが私の新しいレイアウトで表示されているその透明な白を変更するのを手伝ってくれますか?
これは背景の問題があるビューのレイアウトです
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@color/white"
>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<TextView
android:id="@+id/abc"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</RelativeLayout>
</ScrollView>
<RelativeLayout
android:id="@+id/button_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:paddingBottom="5dp"
>
<Button
android:id="@+id/btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="@string/btn1"
android:background="@drawable/btn1"
/>
<Button
android:id="@+id/btn2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="@string/btn2"
android:background="@drawable/btn2"
/>
</RelativeLayout>
コード内
oncreate(){
setcontentview(splashscreen)
setview()
}
void setview(){
if(condition1){
setContentView(R.layout.a1);
}
else{
setContentView(R.layout.a2);
}
}