我需要在活動中將RelativeLayout
塊設置爲VISIBLE
。但我似乎無法給RelativeLayout
分配給一個變量,像這樣:android:如何使用XML中定義的id初始化/膨脹一個RelativeLayout?
Relative Layout alarmSetBlock = (RelativeLayout) findViewById(R.id.sleep_text_block);
alarmSetBlock
分配null
代替。
我想我應該使用類似inflater.inflate的東西,但不知道如何在碎片之外使用它。
請告訴我解決這個問題的最簡單/最好的方法。
佈局的xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="0dp">
<Button
android:id="@+id/alarm_set_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:background="@color/mediumGray"
android:text="SET ALARM"
android:onClick="showTimePickerDialog"/>
</RelativeLayout>
<RelativeLayout
android:id="@+id/sleep_text_block"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:visibility="gone">
<TextView
android:id="@+id/sleep_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="50dp"
android:layout_centerHorizontal="true"
android:textSize="20sp"
android:text="Alarm set to :"/>
<TextView
android:id="@+id/alarm_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_centerHorizontal="true"
android:layout_below="@id/sleep_text"
android:textColor="@color/colorAccent"
android:textSize="36sp" />
</RelativeLayout>
</LinearLayout>
的RelativeLayout
我想初始化是第二個佈局。
這是上述佈局的片段文件。我試圖初始化RelativeLayout
裏面的活動java文件,它包含這個片段。
public class SleepSetFragment extends Fragment {
public static SleepSetFragment newInstance()
{
SleepSetFragment fragment = new SleepSetFragment();
return fragment;
}
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
{
return inflater.inflate(R.layout.fragment_sleep_set, container, false);
}
}
您可以添加活動的XML? –
這應該工作,你使用多個佈局文件夾?確保這些ID也在每個XML中設置。 –
我所有的佈局都在我的res/layout文件夾中。我如何在每個XML中設置ID?如果你的意思是使用'android:id'來定義ID,我已經在這裏完成了。 –