mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
LibraryArchiveFragmentにてコードが重複していたため、削除した
This commit is contained in:
parent
142ca57f76
commit
7965ce90a6
|
@ -1,10 +1,17 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project version="4">
|
<project version="4">
|
||||||
<component name="deploymentTargetDropDown">
|
<component name="deploymentTargetDropDown">
|
||||||
<value>
|
<runningDeviceTargetSelectedWithDropDown>
|
||||||
<entry key="app">
|
<Target>
|
||||||
<State />
|
<type value="RUNNING_DEVICE_TARGET" />
|
||||||
</entry>
|
<deviceKey>
|
||||||
</value>
|
<Key>
|
||||||
|
<type value="SERIAL_NUMBER" />
|
||||||
|
<value value="ZY227DCBHN" />
|
||||||
|
</Key>
|
||||||
|
</deviceKey>
|
||||||
|
</Target>
|
||||||
|
</runningDeviceTargetSelectedWithDropDown>
|
||||||
|
<timeTargetWasSelectedWithDropDown value="2023-12-21T04:53:14.729902700Z" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
|
@ -7,13 +7,14 @@ import android.widget.TextView;
|
||||||
|
|
||||||
import androidx.appcompat.app.AppCompatActivity;
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
|
||||||
|
// LibraryArchiveFragment.java
|
||||||
public class LibraryArchiveFragment extends AppCompatActivity {
|
public class LibraryArchiveFragment extends AppCompatActivity {
|
||||||
@Override
|
@Override
|
||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
setContentView(R.layout.fragment_library_top);
|
setContentView(R.layout.fragment_library_top);
|
||||||
|
|
||||||
//ここに入力された内容を表示する機能
|
// ここに入力された内容を表示する機能
|
||||||
TextView textView = findViewById(R.id.document_list);
|
TextView textView = findViewById(R.id.document_list);
|
||||||
|
|
||||||
textView.setOnClickListener(new View.OnClickListener() {
|
textView.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@ -24,24 +25,10 @@ public class LibraryArchiveFragment extends AppCompatActivity {
|
||||||
// 移動先のアクティビティを指定
|
// 移動先のアクティビティを指定
|
||||||
Intent intent = new Intent(LibraryArchiveFragment.this, LibraryDocFragment.class);
|
Intent intent = new Intent(LibraryArchiveFragment.this, LibraryDocFragment.class);
|
||||||
|
|
||||||
// または、移動先のフラグメントを指定
|
// データを付加する
|
||||||
// Intent intent = new Intent(LibraryArchiveFragment.this, TargetFragment.class);
|
intent.putExtra("key_name", "value_data");
|
||||||
|
|
||||||
startActivity(intent);textView.setOnClickListener(new View.OnClickListener() {
|
|
||||||
@Override
|
|
||||||
public void onClick(View v) {
|
|
||||||
// 文字をタップしたときの処理
|
|
||||||
|
|
||||||
// 移動先のアクティビティを指定
|
|
||||||
Intent intent = new Intent(LibraryArchiveFragment.this, LibraryDocFragment.class);
|
|
||||||
|
|
||||||
// データを付加する
|
|
||||||
intent.putExtra("key_name", "value_data");
|
|
||||||
|
|
||||||
startActivity(intent);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
|
startActivity(intent);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user