アクティビティ内の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
は、レイアウトに2番目のです。
上記のレイアウトのフラグメントファイルは次のとおりです。私は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を追加することはできますか? –
これはうまくいくはずです、複数のレイアウトフォルダを使用していますか?各XMLにもIDが設定されていることを確認してください。 –
私のすべてのレイアウトは私のres/layoutフォルダーにあります。各XMLにIDを設定するにはどうすればよいですか?あなたが 'android:id'を使ってIDを定義することを意味するなら、私はすでにここでそれを行っています。 –